home *** CD-ROM | disk | FTP | other *** search
/ Aminet 5 / Aminet 5 - March 1995.iso / Aminet / util / misc / ManBrowser1_1.lha / GCC_Startup.s < prev    next >
Text File  |  1994-09-04  |  455b  |  26 lines

  1. | Startup code.
  2. | Doesn't do anything; your program is responsible for
  3. | everything, including the workbench-message and opening
  4. | dos.library.
  5.  
  6. |************************************************
  7.  
  8.     .text
  9.     .globl _exit
  10.  
  11.     movel 4:W,_SysBase
  12.     movel SP,StackPointer
  13.     jsr _Main
  14.     jra exit
  15. _exit:    movel SP@(4),d0
  16. exit:    movel StackPointer,SP
  17.     rts
  18.  
  19. |************************************************
  20.  
  21.     .data
  22.     .globl    _SysBase
  23.  
  24.     .comm StackPointer,4
  25.     .comm _SysBase,4
  26.